πŸ““ Artificial Intelligence/Introduction to AI/Week 3 - Introduction/Definitions/K-Median.md by @KGBicheno β˜†

k-median

Go back to the [[AI Glossary]]

#clustering

A clustering algorithm closely related to k-means. The practical difference between the two is as follows:

Note that the definitions of distance are also different:

$$ \text{Euclidian distance} = \sqrt{(2 -5)^2 + (2 - -2)^2} = 5 $$

$$ \text{Manhattan distance} = |2 - 5| + |2 - 2| = 7 $$

L